home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / winnt-patch.el < prev    next >
Text File  |  1993-12-09  |  1KB  |  38 lines

  1. ;; Copyright (C) 1993 Free Software Foundation, Inc.
  2.  
  3. ;; Author: Geoff Voelker (voelker@cs.washington.edu)
  4. ;; Version: 1
  5.  
  6. ;; This file is part of GNU Emacs.
  7.  
  8. ;; GNU Emacs is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 2, or (at your option)
  11. ;; any later version.
  12.  
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ;; GNU General Public License for more details.
  17.  
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  20. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. ;;; Commentary:
  23.  
  24. ;; (August 12, 1993)
  25. ;; NT switches placed in:
  26. ;;
  27. ;; compile.el, dired-new.el, dired.el, loadup.el, startup.el, subr.el
  28.  
  29. ;; (November 21, 1993)
  30. ;; General stuffing for supporting Windows NT.  
  31.  
  32. ;;; Code:
  33.  
  34. ;; Map delete and backspace
  35. (define-key function-key-map [backspace] "\177")
  36. (define-key function-key-map [delete] "\C-d")
  37. (define-key function-key-map [M-backspace] [?\M-\177])
  38.